home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / TOLOWER.C < prev    next >
Text File  |  1980-01-10  |  384b  |  8 lines

  1. /*
  2. ** if character is upper case, convert to lower case
  3. */
  4. tolower(c) char c; {
  5.   if(c >= 'A' && c <= 'Z') return (c + ('a' - 'A'));
  6.   return c;
  7.   }
  8.